home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / parallel-C disk ^1.adf / ERRNO.H < prev    next >
Text File  |  1997-12-31  |  810b  |  44 lines

  1. /*
  2.  * ERRNO.H
  3.  *
  4.  * Symbolic error codes from low-level I/O
  5.  *
  6.  * 1.1.0  28-Sep-84  ADC
  7.  *
  8.  */
  9.  
  10. #define EPERM    1
  11. #define ENOENT   2
  12. #define ESRCH    3
  13. #define EINTR    4
  14. #define EIO      5
  15. #define ENXIO    6
  16. #define E2BIG    7
  17. #define ENOEXEC  8
  18. #define EBADF    9
  19. #define ECHILD   10
  20. #define EAGAIN   11
  21. #define ENOMEM   12
  22. #define EACCES   13
  23. #define EFAULT   14
  24. #define ENOTBLK  15
  25. #define EBUSY    16
  26. #define EEXIST   17
  27. #define EXDEV    18
  28. #define ENODEV   19
  29. #define ENOTDIR  20
  30. #define EISDIR   21
  31. #define EINVAL   22
  32. #define ENFILE   23
  33. #define EMFILE   24
  34. #define ENOTTY   25
  35. #define ETXTBSY  26
  36. #define EFBIG    27
  37. #define ENOSPC   28
  38. #define ESPIPE   29
  39. #define EROFS    30
  40. #define EMLINK   31
  41. #define EPIPE    32
  42. #define EDOM     33
  43. #define ERANGE   34
  44.